home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer Power Tools
/
Programmer Power Tools.iso
/
editor
/
j414src.arc
/
TTYSTATE.H
< prev
next >
Wrap
C/C++ Source or Header
|
1989-10-10
|
455b
|
24 lines
/* Various tty state structures.
* Each is an array, subscripted by one of "OFF" or "ON".
*/
#ifdef UNIX
# ifdef TIOCSLTC
extern struct ltchars ls[2];
# endif /* TIOCSLTC */
# ifdef TIOCGETC
extern struct tchars tc[2];
# endif
# ifdef BRLUNIX
extern struct sg_brl sg[2];
# else
# ifdef SYSV
extern struct termio sg[2];
# else /* SYSV */
extern struct sgttyb sg[2];
# endif /* SYSV */
# endif /* BRLUNIX */
#endif /* UNIX */